home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS20.ADF / BobEd / MakeBobEd < prev    next >
Text File  |  1989-01-27  |  553b  |  19 lines

  1. ; compile BobEd v1.0 source files using lattice C V3.02
  2. ; the script file 'cc' compiles but does not link the source file
  3. ; after executing this file (MakeBobEd) execute the file 'LinkBobEd'.
  4. ; You must ASSIGN the name of the source and object directory so that
  5. ; CC can find the files.  For example "assign source: df1:source/".
  6. ; Note: I have renamed my EXECUTE to EX.
  7.  
  8. echo "Compiling BobEd V1.0 Source Files."
  9. ex cc drawbox
  10. ex cc events
  11. ex cc menus
  12. ex cc main
  13. ex cc disk
  14. ex cc requesters
  15. ex cc gadgets
  16. echo "Finished.  Now link with 'LinkBobEd.'"
  17.  
  18.  
  19.